From 5d6d0f25b9732b83aa3110fb7b52a8b00d5f70e6 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Thu, 23 Jun 2005 12:32:17 +0000 Subject: [PATCH] bitkeeper revision 1.1743 (42baabd1aq7F8kKY4ptBZ39ebtEqOw) null_set_binary_policy() should return ACM_OK instead of -1. This patch also makes few cleanups. Signed-off-by: Nguyen Anh Quynh --- xen/acm/acm_null_hooks.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/xen/acm/acm_null_hooks.c b/xen/acm/acm_null_hooks.c index 6433cbfed6..ce5b2b5453 100644 --- a/xen/acm/acm_null_hooks.c +++ b/xen/acm/acm_null_hooks.c @@ -19,28 +19,23 @@ null_init_domain_ssid(void **chwall_ssid, ssidref_t ssidref) return ACM_OK; } - static void null_free_domain_ssid(void *chwall_ssid) { return; } - static int null_dump_binary_policy(u8 *buf, u16 buf_size) { return 0; } - - static int null_set_binary_policy(u8 *buf, u16 buf_size) { - return -1; + return ACM_OK; } - static int null_dump_stats(u8 *buf, u16 buf_size) @@ -49,7 +44,6 @@ null_dump_stats(u8 *buf, u16 buf_size) return 0; } - /* now define the hook structure similarly to LSM */ struct acm_operations acm_null_ops = { .init_domain_ssid = null_init_domain_ssid, @@ -72,5 +66,4 @@ struct acm_operations acm_null_ops = { .fail_grant_map_ref = NULL, .pre_grant_setup = NULL, .fail_grant_setup = NULL - }; -- 2.30.2